home *** CD-ROM | disk | FTP | other *** search
/ Sports Illustrated for Kids - Awesome Athletes! / Sports Illustrated for Kids - Awesome Athletes!.iso / opt.dir / 00013_Marker.ls < prev    next >
Encoding:
Text File  |  1996-04-18  |  267 b   |  14 lines

  1. on mouseDown
  2.   set vLast to GetVolume()
  3.   repeat while the mouseDown
  4.     set vNew to yToPos(the mouseV)
  5.     if vNew <> vLast then
  6.       placeMarker(vNew)
  7.       set vLast to vNew
  8.     end if
  9.   end repeat
  10.   SetVolume(vLast)
  11.   puppetSound("tone.aif")
  12.   updateStage()
  13. end
  14.